home *** CD-ROM | disk | FTP | other *** search
- program MuscleRelaxed;
- {U$-}
- uses
- MemTypes,QuickDraw,OSIntF,ToolIntf;
-
- var
- ArcRect : rect;
- OvalRect : rect;
- NumbA : integer;
- Count : integer;
- myPort:GrafPort;
- r:rect;
- begin
- InitGraf(@thePort);
- OpenPort(@myPort);
- FillRect(myPort.portBits.Bounds,white);
-
- PenPat(black);
- PenSize(4,5);
- SetRect(r,2,2,508,338);
- FrameRect(r);
-
- PenSize(1,1);
- MoveTo(75, 119);{move cursor to these coordinates}
- LineTo(360,119);{draw line from 70H to 390H}
- MoveTo(75, 199);{move cursor to these coordinates V 200}
- LineTo(360,199);{draw line from 70H to 390H and 200V}
-
- {--------------------------------}
-
- SetRect(ArcRect,305,119,405,200);
- SetRect(OvalRect,270,120,370,199);
- PaintOval(ArcRect);
- PenPat(White);
- PaintOval(OvalRect);
-
- for count := 1 to 2 do
- begin
- OffSetRect(ArcRect, -90,0);
- OffSetRect(OvalRect, -90,0);
- PenPat (Black);
- PaintOval(ArcRect);
- PenPat (White);
- PaintOval(OvalRect);
- end;
-
- PenPat(black); {Set Z lines}
- PenSize(2,2);
- SetRect(ArcRect,60,119,160,200);
- FrameArc(ArcRect,0,180);
- for count := 1 to 2 do
- begin
- OffSetRect(ArcRect, 95,0);
- FrameArc(ArcRect,0,180);
- end;
-
- PenPat(Dkgray);
- SetRect(OvalRect, 35,119,135,200);
- PaintOval(OvalRect);
- ReadLn {hit Return key to go back to Finder or MacPascal if you are using it}
-
- end.